 /* ==== VARIABLES ET RÉINITIALISATION ==== */
    :root {
      --primary: #d16004;
      --primary-dark: #b66700;
      --secondary: #0077b6;
      --secondary-dark: #023e8a;
      --dark: #01070a;
      --light: #f9f9f9;
      --accent: #ce4109;
      --accent-hover: #ad5705;
      --sand: #f5d7a1;
      --ocean-light: #2a4d8e;
      --ocean-dark: #1a2a6c;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    body {
      background: linear-gradient(135deg, var(--ocean-dark), var(--ocean-light));
      color: var(--light);
      min-height: 100vh;
      overflow-x: hidden;
      position: relative;
    }
    
    /* ==== ANIMATIONS ==== */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    @keyframes slideUp {
      from { 
        opacity: 0;
        transform: translateY(40px);
      }
      to { 
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0px); }
    }
    
    @keyframes waterRipple {
      0% { transform: scale(1); opacity: 1; }
      100% { transform: scale(1.5); opacity: 0; }
    }
    
    @keyframes waveAnimation {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }
    
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* ==== NAVBAR ==== */
    .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      background-color: var(--dark);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 30px;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      transition: all 0.4s ease;
    }
    
    .navbar.scrolled {
      padding: 8px 20px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    
    .logo img {
      height: 50px;
      transition: transform 0.3s ease;
    }
    
    .logo:hover img {
      transform: rotate(10deg);
    }
    
    .nav-links {
      display: flex;
      list-style: none;
      gap: 25px;
    }
    
    .nav-links li a {
      color: var(--accent);
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      position: relative;
      padding: 5px 0;
    }
    
    .nav-links li a:after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--accent-hover);
      transition: width 0.3s ease;
    }
    
    .nav-links li a:hover {
      color: var(--accent-hover);
    }
    
    .nav-links li a:hover:after {
      width: 100%;
    }
    
    /* ==== HERO SECTION ==== */
    .hero {
      height: 70vh;
      background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('../Img/AND11.JPG');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      margin-top: 74px;
    }
    
    .hero-content {
      text-align: center;
      max-width: 800px;
      padding: 20px;
      z-index: 2;
      animation: slideUp 1s ease-out forwards;
      opacity: 0;
    }
    
    .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
      color: var(--light);
    }
    
    .hero p {
      font-size: 1.4rem;
      max-width: 600px;
      margin: 0 auto;
      opacity: 0.9;
    }
    
    /* ==== PRODUITS SECTION ==== */
    .produits {
      padding: 80px 30px;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .section-title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 60px;
      position: relative;
      display: inline-block;
      left: 50%;
      transform: translateX(-50%);
      color: var(--light);
    }
    
    .section-title:after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: var(--primary);
      border-radius: 2px;
    }
    
    .produit {
      display: flex;
      align-items: center;
      gap: 50px;
      margin-bottom: 70px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      padding: 30px;
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      transition: all 0.4s ease;
      opacity: 0;
      transform: translateY(30px);
      animation: slideUp 0.8s forwards;
    }
    
    .produit:nth-child(even) {
      flex-direction: row-reverse;
    }
    
    .produit:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }
    
    .produit img {
      width: 45%;
      max-width: 500px;
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
      transition: all 0.4s ease;
    }
    
    .produit:hover img {
      transform: scale(1.03);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    }
    
    .produit .texte {
      flex: 1;
    }
    
    .produit h3 {
      font-size: 1.8rem;
      margin-bottom: 15px;
      color: var(--light);
      position: relative;
      display: inline-block;
    }
    
    .produit h3:after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 50%;
      height: 3px;
      background: var(--primary);
      border-radius: 2px;
    }
    
    .produit p {
      margin-bottom: 15px;
      font-size: 1.1rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.9);
    }
    
    .produit strong {
      color: var(--primary);
      font-weight: 600;
    }
    
    /* ==== DIVERSIFICATION SECTION ==== */
    .diversification {
      padding: 100px 30px;
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.pexels.com/photos/994605/pexels-photo-994605.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
      background-size: cover;
      background-attachment: fixed;
      text-align: center;
      position: relative;
    }
    
    .diversification h2 {
      font-size: 2.5rem;
      margin-bottom: 30px;
      color: var(--light);
    }
    
    .diversification p {
      font-size: 1.2rem;
      line-height: 1.8;
      max-width: 800px;
      margin: 0 auto;
      color: rgba(255, 255, 255, 0.9);
      background: rgba(0, 0, 0, 0.5);
      padding: 30px;
      border-radius: 15px;
      backdrop-filter: blur(5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    /* ==== CARTE SECTION ==== */
    .carte-section {
      padding: 80px 30px;
      background: linear-gradient(135deg, var(--ocean-light), var(--ocean-dark));
      text-align: center;
    }
    
    #map {
      width: 100%;
      height: 500px;
      border-radius: 15px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
      margin: 30px auto 0;
      max-width: 1000px;
      border: 5px solid var(--light);
    }
    
    /* ==== FOOTER ==== */
    footer {
      background: var(--dark);
      color: white;
      padding: 50px 30px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 2;
    }
    
    /* Réseaux sociaux */
    .reseaux {
      display: flex;
      gap: 25px;
    }
    
    .reseaux a {
      display: inline-block;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s ease;
    }
    
    .reseaux a img {
      width: 28px;
      height: 28px;
      filter: brightness(0) invert(1);
      transition: all 0.3s ease;
    }
    
    .reseaux a:hover {
      transform: translateY(-5px) scale(1.1);
      background: var(--primary);
    }
    
    .reseaux a:hover img {
      filter: brightness(1) invert(0);
    }
    
    /* Bouton Réserver */
    .btn-reserver {
      padding: 14px 35px;
      background: var(--primary);
      border: none;
      color: white;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      border-radius: 8px;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(209, 96, 4, 0.4);
      position: relative;
      overflow: hidden;
    }
    
    .btn-reserver:before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: 0.5s;
    }
    
    .btn-reserver:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(209, 96, 4, 0.6);
    }
    
    .btn-reserver:hover:before {
      left: 100%;
    }
    
    /* ==== MODAL ==== */
    .modal {
      display: none;
      position: fixed;
      z-index: 1001;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.7);
      backdrop-filter: blur(5px);
    }
    
    .modal-content {
      background: linear-gradient(135deg, var(--ocean-light), var(--ocean-dark));
      margin: 10% auto;
      padding: 40px;
      border-radius: 15px;
      width: 90%;
      max-width: 500px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
      position: relative;
      animation: slideUp 0.5s ease-out;
    }
    
    .close {
      color: rgba(255, 255, 255, 0.7);
      position: absolute;
      top: 20px;
      right: 25px;
      font-size: 30px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .close:hover {
      color: var(--light);
      transform: rotate(90deg);
    }
    
    .modal-content h3 {
      font-size: 1.8rem;
      margin-bottom: 25px;
      text-align: center;
      color: var(--light);
    }
    
    form label {
      display: block;
      margin-top: 20px;
      font-weight: bold;
      color: var(--light);
    }
    
    form input,
    form select,
    form textarea {
      width: 100%;
      padding: 14px;
      margin-top: 8px;
      border: none;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.9);
      font-size: 1rem;
      transition: all 0.3s ease;
    }
    
    form input:focus,
    form select:focus,
    form textarea:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
      background: white;
    }
    
    .btn-envoyer {
      margin-top: 25px;
      width: 100%;
      background: var(--primary);
      color: white;
      padding: 14px;
      border: none;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      border-radius: 8px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    .btn-envoyer:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(209, 96, 4, 0.4);
    }
    
    /* ==== ANIMATIONS DE FOND ==== */
    .ocean {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 80px;
      overflow: hidden;
      z-index: -1;
    }
    
    .wave {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 200%;
      height: 100%;
      background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0 0v46.29c47.79 22.2 103.59 32.17 158 28 70.36-5.37 136.33-33.31 206.8-37.5 73.84-4.36 147.54 16.88 218.2 35.26 69.27 18 138.3 24.88 209.4 13.08 36.15-6 69.85-17.84 104.45-29.34C989.49 25 1113-14.29 1200 52.47V0z" fill="rgba(255,255,255,0.07)"/></svg>') repeat-x;
      background-size: 1200px 100px;
      animation: waveAnimation 18s linear infinite;
    }
    
    .wave:nth-child(2) {
      animation-duration: 20s;
      animation-delay: -5s;
      opacity: 0.5;
      bottom: 10px;
    }
    
    .wave:nth-child(3) {
      animation-duration: 25s;
      animation-delay: -2s;
      opacity: 0.3;
      bottom: 15px;
    }
    
    .floating-element {
      position: absolute;
      z-index: -1;
      opacity: 0.2;
      animation: float 8s ease-in-out infinite;
      font-size: 40px;
      pointer-events: none;
    }
    
    .floating-element:nth-child(1) {
      top: 10%;
      left: 5%;
      animation-delay: 0s;
    }
    
    .floating-element:nth-child(2) {
      top: 25%;
      right: 10%;
      animation-delay: 2s;
      animation-duration: 10s;
    }
    
    .floating-element:nth-child(3) {
      bottom: 30%;
      left: 15%;
      animation-delay: 4s;
      animation-duration: 12s;
    }
    
    /* ==== RESPONSIVE ==== */
    @media (max-width: 1000px) {
      .hero h1 {
        font-size: 2.8rem;
      }
      
      .produit {
        flex-direction: column;
        text-align: center;
      }
      
      .produit:nth-child(even) {
        flex-direction: column;
      }
      
      .produit img {
        width: 100%;
      }
      
      .produit h3:after {
        left: 50%;
        transform: translateX(-50%);
      }
    }
    
    @media (max-width: 768px) {
      .navbar {
        flex-direction: column;
        padding: 15px;
      }
      
      .nav-links {
        margin-top: 15px;
        gap: 15px;
      }
      
      .hero {
        height: 60vh;
      }
      
      .hero h1 {
        font-size: 2.2rem;
      }
      
      .hero p {
        font-size: 1.1rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      footer {
        flex-direction: column;
        gap: 30px;
        text-align: center;
      }
      
      .reseaux {
        justify-content: center;
      }
    }
    
    @media (max-width: 480px) {
      .hero h1 {
        font-size: 1.8rem;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
      
      .produit h3 {
        font-size: 1.5rem;
      }
    }